home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / pcl_src.zoo / extensions.lsp < prev    next >
Lisp/Scheme  |  1992-07-09  |  23KB  |  497 lines

  1. ;;;-*-Mode:LISP; Package: PCL; Base:10; Syntax:Common-lisp; -*-
  2.  
  3. ;;;
  4. ;;; *************************************************************************
  5. ;;;
  6. ;;;   File: extensions.lisp.
  7. ;;;
  8. ;;;     by Trent E. Lange, Effective Date 04-23-92
  9. ;;;
  10. ;;;
  11. ;;;  This file contains a small set of useful extensions to PCL. 
  12. ;;;
  13. ;;; Permission is granted to any individual or institution to use, copy,
  14. ;;; modify and distribute this document.
  15. ;;;
  16. ;;; Suggestions, bugs, criticism and questions to lange@cs.ucla.edu
  17. ;;; *************************************************************************
  18. ;;;
  19.  
  20. (in-package 'pcl)
  21.  
  22. (eval-when (compile load eval)
  23.  
  24. (defvar *extensions-exports*
  25.         '(set-standard-instance-access
  26.           set-funcallable-instance-access
  27.  
  28.           funcallable-instance-slot-value
  29.           set-funcallable-instance-slot-value
  30.           funcallable-instance-slot-boundp
  31.           standard-instance-slot-value
  32.           set-standard-instance-slot-value
  33.           standard-instance-slot-boundp
  34.           structure-instance-slot-value
  35.           set-structure-instance-slot-value
  36.           structure-instance-slot-boundp
  37.  
  38.           #+pcl-user-instances
  39.           user-instance-slot-value
  40.           #+pcl-user-instances
  41.           set-user-instance-slot-value
  42.           #+pcl-user-instances
  43.           user-instance-slot-boundp
  44.  
  45.           with-optimized-slots
  46.           with-standard-instance-slots
  47.  
  48.           method-needs-next-methods-p
  49.           map-all-classes
  50.           finalize-all-classes
  51.  
  52.           updater
  53.           record-updater))
  54. )
  55.  
  56. (defclass updater ()
  57.   ((dependent :initarg :dependent :reader dependent)))
  58.  
  59. (defun record-updater (class dependee dependent &rest initargs)
  60.   (let ((updater
  61.          (apply #'make-instance class :dependent dependent initargs)))
  62.     (add-dependent dependee updater)
  63.     updater))
  64.  
  65.  
  66. (defun finalize-all-classes (&optional (root-name 't))
  67.   "Makes sure that all classes are finalized.  If Root-Name is supplied,
  68.    then finalizes Root-Name and all of its subclasses and their subclasses."
  69.   (map-all-classes #'(lambda (class)
  70.                        (unless (class-finalized-p class)
  71.                          (finalize-inheritance class)))
  72.                    root-name))
  73.  
  74.  
  75. ;;;
  76. ;;;
  77. ;;;
  78.  
  79.  
  80. (defmacro slot-value-from-index (instance wrapper slot-name slots index)
  81.   "Returns instance's slot-value given slot-name's index."
  82.   (once-only (index)
  83.     `(if ,index
  84.          (let ((val (%svref ,slots ,index)))
  85.            (if (eq val ',*slot-unbound*)
  86.                (slot-unbound (wrapper-class ,wrapper) ,instance ,slot-name)
  87.              val))
  88.          (if *safe-to-use-slot-value-wrapper-optimizations-p*
  89.              (get-class-slot-value-1 ,instance ,wrapper ,slot-name)
  90.              (accessor-slot-value ,instance ,slot-name)))))
  91.  
  92. (defmacro set-slot-value-from-index
  93.           (instance wrapper slot-name slots index new-value)
  94.   "Sets instance's slot-value to new-value given slot-name's index."
  95.   (once-only (index)
  96.     `(if ,index
  97.           (setf (%svref ,slots ,index) ,new-value)
  98.           (if *safe-to-use-set-slot-value-wrapper-optimizations-p*
  99.               (set-class-slot-value-1 ,instance ,wrapper ,slot-name ,new-value)
  100.               (setf (accessor-slot-value ,instance ,slot-name) ,new-value)))))
  101.  
  102. (defsetf slot-value-from-index set-slot-value-from-index)
  103.  
  104. (defmacro with-slots-slot-value-from-index
  105.           (instance wrapper slot-name slots index variable-instance)
  106.   "Returns instance's slot-value given slot-name's index."
  107.   (cond
  108.    ((consp wrapper)
  109.     `(let ((wrapper ,wrapper))
  110.        (unless (eq (wrapper-state wrapper) 't)
  111.          (setf wrapper (wrapper-state-trap wrapper ,instance)))
  112.        (with-slots-slot-value-from-index
  113.          ,instance wrapper ,slot-name ,slots ,index ,variable-instance)))
  114.    (variable-instance
  115.     `(let ((,instance ,variable-instance))
  116.        (with-slots-slot-value-from-index
  117.          ,instance ,wrapper ,slot-name ,slots ,index NIL)))
  118.    (T `(slot-value-from-index ,instance ,wrapper ,slot-name ,slots ,index))))
  119.  
  120. (defmacro set-with-slots-slot-value-from-index
  121.           (instance wrapper slot-name slots index variable-instance new-value)
  122.   "Sets instance's slot-value to new-value given slot-name's index."
  123.   (cond
  124.    ((consp wrapper)
  125.     `(let ((wrapper ,wrapper))
  126.        (unless (eq (wrapper-state wrapper) 't)
  127.          (setf wrapper (wrapper-state-trap wrapper ,instance)))
  128.        (set-with-slots-slot-value-from-index
  129.          ,instance wrapper ,slot-name ,slots ,index ,variable-instance
  130.          ,new-value)))
  131.    (variable-instance
  132.     `(let ((,instance ,variable-instance))
  133.        (set-with-slot-slots-value-from-index
  134.          ,instance ,wrapper ,slot-name ,slots ,index NIL ,new-value)))
  135.    (T
  136.     `(setf (slot-value-from-index ,instance ,wrapper ,slot-name ,slots ,index)
  137.            ,new-value))))
  138.  
  139. (defsetf with-slots-slot-value-from-index
  140.          set-with-slots-slot-value-from-index)
  141.  
  142. (defmacro with-slots-slot-value-from-wrapper-and-slots
  143.     (instance slot-name wrapper slots-layout slots variable-instance)
  144.   (cond
  145.    (variable-instance
  146.     `(let ((,instance ,variable-instance))
  147.        (with-slots-slot-value-from-wrapper-and-slots
  148.          ,instance ,slot-name ,wrapper ,slots-layout ,slots NIL)))
  149.    ((consp wrapper)
  150.     `(if *safe-to-use-slot-value-wrapper-optimizations-p*
  151.          (let ((wrapper ,wrapper))
  152.            (unless (eq (wrapper-state wrapper) 't)
  153.              (setf wrapper (wrapper-state-trap wrapper ,instance)))
  154.            (slot-value-from-wrapper-and-slots ,instance ,slot-name
  155.              wrapper ,slots-layout ,slots NIL))
  156.          (accessor-slot-value ,instance ,slot-name)))
  157.    (T
  158.     `(if *safe-to-use-slot-value-wrapper-optimizations-p*
  159.          (slot-value-from-wrapper-and-slots
  160.            ,instance ,slot-name ,wrapper ,slots-layout ,slots NIL)
  161.          (accessor-slot-value ,instance ,slot-name)))))
  162.  
  163. (defmacro set-with-slots-slot-value-from-wrapper-and-slots
  164.     (instance slot-name wrapper slots-layout slots variable-instance new-value)
  165.   (cond
  166.    (variable-instance
  167.     `(let ((,instance ,variable-instance))
  168.        (set-with-slots-slot-value-from-wrapper-and-slots
  169.          ,instance ,slot-name ,wrapper ,slots-layout ,slots NIL ,new-value)))
  170.    ((consp wrapper)
  171.     `(if *safe-to-use-set-slot-value-wrapper-optimizations-p*
  172.          (let ((wrapper ,wrapper))
  173.            (unless (eq (wrapper-state wrapper) 't)
  174.              (setf wrapper (wrapper-state-trap wrapper ,instance)))
  175.            (setf (slot-value-from-wrapper-and-slots ,instance ,slot-name
  176.                     wrapper ,slots-layout ,slots NIL)
  177.                  ,new-value))
  178.          (setf (accessor-slot-value ,instance ,slot-name) ,new-value)))
  179.    (T
  180.     `(if *safe-to-use-set-slot-value-wrapper-optimizations-p*
  181.          (setf (slot-value-from-wrapper-and-slots
  182.                  ,instance ,slot-name ,wrapper ,slots-layout ,slots NIL)
  183.                ,new-value)
  184.          (setf (accessor-slot-value ,instance ,slot-name) ,new-value)))))
  185.  
  186. (defsetf with-slots-slot-value-from-wrapper-and-slots
  187.          set-with-slots-slot-value-from-wrapper-and-slots)
  188.  
  189. (defun tree-memq-p (item form)
  190.   (cond ((consp form)
  191.          (or (tree-memq-p item (car form))
  192.              (tree-memq-p item (cdr form))))
  193.         (T (eq item form)))) 
  194.  
  195. (defmacro with-optimized-slots (slot-entries instance-form &body body)
  196.   "Optimized version of With-Slots that is faster because it factors out
  197.    functions common to all slot accesses on the instance.  It has two
  198.    extensions to With-Slots: (1) the second value of slot-entries are
  199.    evaluated as forms rather than considered to be hard slot-names, allowing
  200.    access of variable slot-names.  (2) if a :variable-instance keyword is
  201.    the first part of the body, then the instance-form is treated as a variable
  202.    form, which is always expected to return an instance of the same class.
  203.    The value of the keyword must be an instance that is the same class as
  204.    instance-form will always return."
  205.   ;;  E.g. (with-optimized-slots (foo-slot
  206.   ;;